web3.js web3.utils.padRight
web3.utils.padRight(string, characterAmount [, sign])
web3.utils.rightPad(string, characterAmount [, sign]) // ALIAS
文字列の右側にパディングを追加します。
パラメータ
1. string - String: The string to add padding on the left.
2. characterAmount - Number: The number of characters the total string should have.
3. sign - String
オプショナル
埋める文字
デフォルトは 0
サンプル
code:ex.js
web3.utils.padRight('0x3456ff', 20);
"0x3456ff00000000000000"
web3.utils.padRight(0x3456ff, 20);
"0x3456ff00000000000000"
web3.utils.padRight('Hello', 20, 'x');
"Helloxxxxxxxxxxxxxxx"
参考